home *** CD-ROM | disk | FTP | other *** search
/ Robotics & Artificial Int…3 (Professional Edition) / Robotics & Artificial Intelligence Tools 2003 (Professional Edition).iso / robot software / webots-kros-1.0.1_setup.exe / {app} / kteam / glue / etc / Makefile_PIC < prev    next >
Makefile  |  2001-02-07  |  726b  |  30 lines

  1. ##############################################################
  2. #
  3. # Makefile master for the Source Navigator / GNU Compiler Env.
  4. #
  5. # Copyright (C) 2000 K-TEAM S.A.
  6. #
  7. ##############################################################
  8.  
  9. include $(sft_pack)etc/Makefile_Common
  10.  
  11. # Transform code into Position Independent Code and Data
  12. PICIFY = awk -f $(picscript)
  13. CCPIC   = -fPIC
  14. picscript = $(sft_pack)etc/PICIFY.awk
  15.  
  16. $(objdir)%.o: $(asmdir)%.s
  17.     @echo Assembling $< into $@ 
  18.     @$(PICIFY) $< > $<_.s
  19.     @$(CC) $(DEBUG) $(SPECIAL) $(OPTS) $(ALL_CFLAGS) -c -o $@ $<_.s
  20.     @rm $<_.s
  21.  
  22. $(objdir)%.o: $(asmdir)%.S
  23.     @echo Assembling $< into $@ 
  24.     @$(PICIFY) $< > $<_.S
  25.     @$(CC) $(DEBUG) $(SPECIAL) $(OPTS) $(ALL_CFLAGS) -c -o $@ $<_.S
  26.     @rm $<_.S
  27.  
  28.  
  29.  
  30.